home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / CLEARERR.C next >
C/C++ Source or Header  |  1996-06-24  |  126b  |  7 lines

  1. #include <stdio.h>
  2.  
  3. void clearerr(FILE *stream)
  4. {
  5.     if (stream->token == FILTOK)
  6.         stream->flags &= ~(_F_ERR | _F_EOF);
  7. }